home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / gui / gadtoolsbox20c.lha / GadToolsBox / GTXLib / C_includes / gadtoolsbox / textclass.h < prev   
C/C++ Source or Header  |  1993-04-12  |  809b  |  33 lines

  1. #ifndef GADTOOLSBOX_TEXTCLASS_H
  2. #define GADTOOLSBOX_TEXTCLASS_H
  3. /*
  4. **      $VER: gadtoolsbox/textclass.h 39.1 (12.4.93)
  5. **      GTXLib headers release 2.0.
  6. **
  7. **      Definitions for the TEXT BOOPSI class.
  8. **
  9. **      (C) Copyright 1992,1993 Jaba Development.
  10. **          Written by Jan van den Baard
  11. **/
  12.  
  13. #ifndef EXEC_TYPES_H
  14. #include <exec/types.h>
  15. #endif
  16.  
  17. #ifndef UTILITY_TAGITEM_H
  18. #include <utility/tagitem.h>
  19. #endif
  20.  
  21. /* tags for the text class system */
  22. #define TX_TagBase          (TAG_USER+1)
  23.  
  24. #define TX_TextAttr         (TX_TagBase+1)
  25. #define TX_Style            (TX_TagBase+2)
  26. #define TX_ForceTextPen     (TX_TagBase+3)
  27. #define TX_Underscore       (TX_TagBase+4)
  28. #define TX_Flags            (TX_TagBase+5)
  29. #define TX_Text             (TX_TagBase+6)
  30. #define TX_NoBox            (TX_TagBase+7)
  31.  
  32. #endif
  33.